home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / hypercrd / hc2_x / tcprogud.sit / TC Prog Guide / card_41262.txt < prev    next >
Text File  |  1991-02-27  |  2KB  |  86 lines

  1. -- card: 41262 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 4755
  5. -- name: 
  6.  
  7.  
  8. -- part 1 (field)
  9. -- low flags: 00
  10. -- high flags: 0007
  11. -- rect: left=30 top=78 right=296 bottom=478
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 0
  15. -- font id: 4
  16. -- text size: 9
  17. -- style flags: 0
  18. -- line height: 12
  19. -- part name: 
  20.  
  21.  
  22. -- part contents for card part 1
  23. ----- text -----
  24. ----------------------------- TC version --------------------------
  25.  
  26.  
  27. /*
  28. *   FILE:    student.h
  29. *   AUTHOR:  R.G.
  30. *   CREATED: June 25, 1990
  31. *   
  32. *   header for Student class
  33. */
  34.  
  35. # define _H_student
  36. # include "person.h"
  37.  
  38. /******************************************************************
  39. *   derive Student class from Person
  40. ******************************************************************/
  41. struct   Student:Person
  42. {
  43.     int     student_num;
  44.  
  45.     void    set(void);
  46.     void    print(void);
  47. };
  48.  
  49.  
  50. ---------------------------- C++ version --------------------------
  51.  
  52.  
  53. /*
  54. *   FILE:    student.h
  55. *   AUTHOR:  R.G.
  56. *   CREATED: June 25, 1990
  57. *   
  58. *   header for Student class
  59. */
  60.  
  61. # ifndef student_h
  62. # define student_h
  63. # include "person.h"
  64.  
  65. /******************************************************************
  66. *   derive Student class from Person
  67. ******************************************************************/
  68. struct   Student:Person
  69. {
  70.     int     student_num;
  71.  
  72.     void    set(void);  
  73.     void    print(void);
  74. };
  75.  
  76. # endif
  77.  
  78.  
  79.  
  80. -- part contents for background part 7
  81. ----- text -----
  82. 135
  83.  
  84. -- part contents for background part 4
  85. ----- text -----
  86. File 5 of 7: